home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / eulisp / mpfeel.lha / MPFeel / Plurals / mp_utils.h < prev    next >
C/C++ Source or Header  |  1991-11-28  |  602b  |  34 lines

  1. /*
  2.  *    Plurals
  3.  *
  4.  *    Author:        S.C.Merrall
  5.  *
  6.  *    File:        mp_utils.h
  7.  *
  8.  *    Contents:    sp_memcpy
  9.  *            pp_memswp
  10.  *
  11.  *    Description:       Functions that I feel should be in th mpl library
  12.  *            but aren't.
  13.  *
  14.  *    Change History:
  15.  *
  16.  *    Date   Name Comment
  17.  *    -------- ---- -------
  18.  *    22:02:91 SCM  Created
  19.  *    06:06:91 SCM  Added pp_memswp
  20.  */
  21.  
  22. #ifdef __STDC__
  23.  
  24. extern plural char *sp_memcpy( plural char *plural, char *, int );
  25. extern int          pp_memswp( plural char *plural, plural int, 
  26.                    plural char *plural, plural int );
  27.  
  28. #else
  29.  
  30. plural char *sp_memcpy();
  31. plural int   pp_memswp();
  32.  
  33. #endif
  34.